home *** CD-ROM | disk | FTP | other *** search
/ Stuart Little 2 Press Kit / Stuart Little 2 Press Kit.iso / pc / SL2.dxr / TrailerLogosNotes_7_OpenCreditsPDF.ls < prev    next >
Encoding:
Text File  |  2002-06-24  |  608 b   |  29 lines

  1. on mouseEnter
  2.   sprite(31).member = member("Notes_Credits_RO")
  3.   cursor(280)
  4. end
  5.  
  6. on mouseLeave
  7.   sprite(31).member = member("Notes_Credits")
  8.   cursor(0)
  9. end
  10.  
  11. on mouseUp
  12.   pel = the moviePath & "MEDIA"
  13.   if the platform contains "Mac" then
  14.     Acrbat = the moviePath & "Acrobat Reader Mac 4.0:Acrobat Reader"
  15.     open(pel & ":NOTES:CREDITS.PDF", Acrbat)
  16.   else
  17.     Acrbat = the moviePath & "acrobat4\Reader\AcroRd32.exe"
  18.     open(pel & "\NOTES\CREDITS.PDF", Acrbat)
  19.   end if
  20.   sprite(112).visible = 0
  21. end
  22.  
  23. on mouseDown
  24.   sound(3).play(member("click"))
  25.   sprite(112).visible = 1
  26.   updateStage()
  27.   thing()
  28. end
  29.